quickQuotes + easyDiary
思考ログ、作業ログをとる上でtsawada.iconには欠かせないBookmarklet 「今見ているPage」をScrapboxにさっと転記できる
アホほど便利
他人のScrapbox Projectであっても引用取ってこれる
「自分のログPageに持ってきたい」場合にやるActionが1種類だけなのは最強
本当だったら「Scrapbox」「普通のWeb Page」でbookmarkletを変える必要がある
利用Image
https://gyazo.com/f1404c58add11d2b1759d5de48cad210
clickすると
Quotesした内容、そのままDiaryに貼りたいケースが多々ある
今、記載しているPage/みているPageをコメント付きですぐにDiaryに持って行きたい
そもそもBookmarkletをshortcut keyで起動できると可能性が広がる
PCでもスマホでも
twitterでは動かない
https://gyazo.com/a604f8790766e245c3ffda52864be3ab
「外部Scriptの読み込み」が禁止されている
以下Javascriptを「ブックマークのURL欄」に記載することで、機能する
code:bookmarklet.js
code:script.js
function easyDiary(body_lines){
const today = new Date();
const title = [today.getFullYear(),
("00" + (today.getMonth()+1)).slice(-2),today.getDate()].join('%2F');
body = body_lines.join('\n');
}else{
body = body_lines;
}
}
function quickQuotes(){
var title = document.title;
var replacedStrings = {
':': ':',
'\\[': '[',
'\\]': ']',
'\\|': '|'
};
for (var key in replacedStrings) {
title = title.replace(new RegExp(key, 'g'), replacedStringskey); }
var quote=window.getSelection().toString();
if (quote.trim())
lines=lines.concat(quote.replace(/^\n/g,"").split(/\n/g).map(function(line){return ' > '+line}));
return lines;
}
function quickQuotesAtScrapbox(){
var project_title = '[/' + scrapbox.Project.name + '/' + scrapbox.Page.title
if(document.getElementsByClassName("cursor-line")0){ var quote=window.getSelection().toString();
if(window.getSelection().toString()==""){
var url = project_title + "#" +
document.getElementsByClassName("cursor-line")0.id.slice(1) + ']'; }else{
var lines = quote.split(/\n/g).map(function(line){return ' > '+line})
var url = project_title +
"#"+ document.getElementsByClassName("cursor-line")0.id.slice(1) + "]" +
"\r" +lines.join('\n');
}
}else{
var url = project_title + ']';
}
return url;
}
if(document.location.href.match(/scrapbox.io/)){
var body = quickQuotesAtScrapbox();
}else{
var body = quickQuotes();
}
easyDiary(body);